home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Freeware / ttengine-4.3 / Examples / TextExtent / makefile next >
Encoding:
Makefile  |  2002-10-27  |  227 b   |  12 lines

  1. CF = -c -msmall-code -m68020 -fbaserel
  2.  
  3. txex: txex.o startup.o
  4.     gcc -o txex -nostartfiles -noixemul -msmall-code -fbaserel startup.o txex.o
  5.  
  6. txex.o: txex.c
  7.     gcc $(CF) $<
  8.  
  9. startup.o: startup.c
  10.     gcc $(CF) -fwritable-strings $<
  11.  
  12.